home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / Internet / comit / INSTALL.BAT < prev    next >
DOS Batch File  |  1994-02-17  |  1KB  |  52 lines

  1. @echo off
  2. rem
  3. rem     Batch file for DosFax LITE & COMit LITE/DOS dual install
  4. rem
  5. rem
  6. rem   The program 'dialog' puts up an install selection dialog box
  7. rem   on the screen and returns the users choices as 'errorlevel'
  8. rem
  9. rem                0 = Don't install either package
  10. rem                1 = Only install DosFax LITE
  11. rem                2 = Only install COMit LITE/DOS
  12. rem                3 = Install both packages
  13. rem
  14. if not exist dialog.exe goto chdrive
  15. dialog
  16. cls
  17. if errorlevel 3 goto both
  18. if errorlevel 2 goto comit
  19. if errorlevel 1 goto dosfax
  20. if errorlevel 0 goto none
  21. :chdrive
  22. echo Please change to the drive containing the installation
  23. echo diskette and re-run the install program.
  24. goto exit
  25. :dosfax
  26. echo Installing Delrina DosFax LITE
  27. cd \DosFax
  28. install
  29. rem
  30. rem                     DosFax LITE Installation
  31. rem
  32. goto exit
  33. :both
  34. echo Installing Delrina DosFax LITE
  35. cd \dosfax
  36. install
  37. rem
  38. rem                     DosFax LITE Installation
  39. rem
  40. :comit
  41. echo Installing COMit LITE for DOS
  42. cd \comitd
  43. install
  44. rem
  45. rem                    COMit LITE/DOS Installation
  46. rem
  47. goto exit
  48. :none
  49. echo No installation requested
  50. :exit
  51. cd \
  52.